home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / fd_move.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  156 b   |  12 lines

  1. #include "fd.h"
  2.  
  3. int fd_move(to,from)
  4. int to;
  5. int from;
  6. {
  7.   if (to == from) return 0;
  8.   if (fd_copy(to,from) == -1) return -1;
  9.   close(from);
  10.   return 0;
  11. }
  12.